home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWPart / Sources / FWFrmInf.cpp < prev    next >
Encoding:
Text File  |  1995-11-08  |  1.5 KB  |  53 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWFrmInf.cpp
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWFrameW.hpp"
  11.  
  12. #ifndef FWFRMINF_H
  13. #include "FWFrmInf.h"
  14. #endif
  15.  
  16. #ifndef FWFRAME_H
  17. #include "FWFrame.h"
  18. #endif
  19.  
  20. //========================================================================================
  21. //    RunTime Info
  22. //========================================================================================
  23.  
  24. #if FW_LIB_EXPORT_PRAGMAS
  25. #pragma lib_export on
  26. #endif
  27.  
  28. #ifdef FW_BUILD_MAC
  29. #pragma segment framework
  30. #endif
  31.  
  32. //========================================================================================
  33. //    class FW_CFramePartInfo
  34. //========================================================================================
  35.  
  36. //----------------------------------------------------------------------------------------
  37. //    FW_CFramePartInfo::FW_CFramePartInfo
  38. //----------------------------------------------------------------------------------------
  39.  
  40. FW_CFramePartInfo::FW_CFramePartInfo(Environment* ev, FW_CFrame* frame) :
  41.     fFrame(frame)
  42. {
  43.     fEventHandler = frame;
  44. }
  45.  
  46. //----------------------------------------------------------------------------------------
  47. //    FW_CFramePartInfo::~FW_CFramePartInfo
  48. //----------------------------------------------------------------------------------------
  49.  
  50. FW_CFramePartInfo::~FW_CFramePartInfo()
  51. {
  52. }
  53.